home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / rayfiles / rsdefs / examples / test_surfs < prev    next >
Text File  |  1994-08-09  |  2KB  |  55 lines

  1. #!/bin/csh -f
  2. ###########################################################################
  3. #
  4. #      Test_surfs
  5. #
  6. #    This is a script file for testing surfaces.  It takes a list of
  7. #    surfaces (set below) and renders the testsurf.ray scene file with
  8. #    each surface in the list, creating a picture file for each surface.
  9. #
  10. #    Please do not edit this file, or any of the other files in
  11. #    this package!  Make additions to these in your own separate
  12. #    file.  If you think you have something that should be added
  13. #    permanently, please send it to Larry Coffin and/or David
  14. #    DeBry (email addresses listed below).  If we include it in
  15. #    the next release, we'll put your name in the contributor's
  16. #    list.
  17. #
  18. #      Contributors (in alphabetical order):
  19. #          Larry Coffin <lcoffin@clciris.chem.umr.edu>
  20. #          David DeBry <ddebry@dsd.es.com>
  21. #
  22.  
  23. ###########################################################################
  24. # directory for defs.rh package
  25. #
  26. # set defsdir = /usr/people/c/lcoffin/include/rsdefs
  27. set defsdir = .
  28.  
  29. ###########################################################################
  30. # list of surfaces to render
  31. #
  32. set surfs = (RSSgold RSSambulance RSSglass_new)
  33.  
  34. foreach i ($surfs)
  35.     ###################################################################
  36.     # for the surface "RSSabc" - picture file is named test_RSSabc.rle
  37.     #
  38.     set outfile = test_$i.rle
  39.  
  40.     echo
  41.     echo Working on $outfile with surface $i....
  42.     echo
  43.  
  44.     myshade -P "-I$defsdir -DTEST_SURF=$i" < testsurf.ray > $outfile
  45.  
  46.     ###################################################################
  47.     # automatically compress the picture file (uncomment to use)
  48.     #
  49.     # compress $outfile
  50. end
  51.  
  52.  
  53. echo Done with batch.
  54.  
  55.